home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / clauum.z / clauum
Encoding:
Text File  |  2002-10-03  |  3.4 KB  |  133 lines

  1.  
  2.  
  3.  
  4. CCCCLLLLAAAAUUUUUUUUMMMM((((3333SSSS))))                                                          CCCCLLLLAAAAUUUUUUUUMMMM((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      CLAUUM - compute the product U * U' or L' * L, where the triangular
  10.      factor U or L is stored in the upper or lower triangular part of the
  11.      array A
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE CLAUUM( UPLO, N, A, LDA, INFO )
  15.  
  16.          CHARACTER      UPLO
  17.  
  18.          INTEGER        INFO, LDA, N
  19.  
  20.          COMPLEX        A( LDA, * )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      CLAUUM computes the product U * U' or L' * L, where the triangular factor
  37.      U or L is stored in the upper or lower triangular part of the array A. If
  38.      UPLO = 'U' or 'u' then the upper triangle of the result is stored,
  39.      overwriting the factor U in A.
  40.      If UPLO = 'L' or 'l' then the lower triangle of the result is stored,
  41.      overwriting the factor L in A.
  42.  
  43.      This is the blocked form of the algorithm, calling Level 3 BLAS.
  44.  
  45.  
  46. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  47.      UPLO    (input) CHARACTER*1
  48.              Specifies whether the triangular factor stored in the array A is
  49.              upper or lower triangular:
  50.              = 'U':  Upper triangular
  51.              = 'L':  Lower triangular
  52.  
  53.      N       (input) INTEGER
  54.              The order of the triangular factor U or L.  N >= 0.
  55.  
  56.      A       (input/output) COMPLEX array, dimension (LDA,N)
  57.              On entry, the triangular factor U or L.  On exit, if UPLO = 'U',
  58.              the upper triangle of A is overwritten with the upper triangle of
  59.              the product U * U'; if UPLO = 'L', the lower triangle of A is
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CCCCLLLLAAAAUUUUUUUUMMMM((((3333SSSS))))                                                          CCCCLLLLAAAAUUUUUUUUMMMM((((3333SSSS))))
  71.  
  72.  
  73.  
  74.              overwritten with the lower triangle of the product L' * L.
  75.  
  76.      LDA     (input) INTEGER
  77.              The leading dimension of the array A.  LDA >= max(1,N).
  78.  
  79.      INFO    (output) INTEGER
  80.              = 0: successful exit
  81.              < 0: if INFO = -k, the k-th argument had an illegal value
  82.  
  83. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  84.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  85.  
  86.      This man page is available only online.
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.